home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / LIB / MIN_INTE.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.1 KB  |  34 lines

  1.  
  2. package sub_arctic.lib;
  3.  
  4. /** 
  5.  * This is a placeholder for a future class that will provide a 
  6.  * base class for building very lightweight interactors.  Eventually,
  7.  * some functionality will be split out of base_interactor and placed
  8.  * here.  For now this class does nothing except hold a spot in the class
  9.  * hierarchy for later use.
  10.  *
  11.  * @author Scott Hudson
  12.  */
  13. public abstract class min_interactor implements interactor {
  14.  
  15.   /* empty for now */
  16.  
  17. }
  18. /*=========================== COPYRIGHT NOTICE ===========================
  19.  
  20. This file is part of the subArctic user interface toolkit.
  21.  
  22. Copyright (c) 1996 Scott Hudson and Ian Smith
  23. All rights reserved.
  24.  
  25. The subArctic system is freely available for most uses under the terms
  26. and conditions described in 
  27.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  28. and appearing in full in the lib/interactor.java source file.
  29.  
  30. The current release and additional information about this software can be 
  31. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  32.  
  33. ========================================================================*/
  34.